home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 May: Tool Chest / Developer CD Series May 1996 (Tool Chest) (Apple Computer) (1996).iso / Sample Code / Snippets / Toolbox / SICN LDEF / ppcsicn.make < prev    next >
Encoding:
Text File  |  1995-06-12  |  709 b   |  30 lines  |  [TEXT/MPS ]

  1. #   File:       ppcsicn.make
  2. #   Target:     ppcsicn
  3. #   Sources:    mylistdef.c
  4. #   Created:    Tuesday, September 21, 1993 10:40:39 PM
  5.  
  6.  
  7. OBJECTS = mylistdef.o
  8.  
  9.  
  10.  
  11. ppcsicn ƒƒ makeNCOD.r makeRSRC.r {OBJECTS}
  12.     PPCLink  -sym on ∂
  13.         {OBJECTS} ∂
  14.         "{PPCLibraries}"InterfaceLib.xcoff ∂
  15.         "{PPCLibraries}"PPCCRuntime.o ∂
  16.         -main theLDEF ∂
  17.         -o ppcsicn.xcoff
  18.     makePEF ppcsicn.xcoff -o ppcsicn.pef ∂
  19.         -l InterfaceLib.xcoff=InterfaceLib ∂
  20.         -b
  21.     makesym ppcsicn.xcoff
  22.     Rez makeNCOD.r -o ppcsicn.nCod
  23.     Rez makeRSRC.r -o ppcsicn.rsrc
  24.     SetFile -t rsrc -c RSED ppcsicn.rsrc
  25.     delete ppcsicn.pef
  26.     delete ppcsicn.nCod
  27.     
  28. mylistdef.o ƒ mylistdef.c
  29.      PPCC -sym on -opt off -w conformance -appleext on  mylistdef.c -o mylistdef.o
  30.